home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / tpwprog7.arj / STRDLL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-07-02  |  443 b   |  22 lines

  1. { strdll.pas -- A DLL of string routines }
  2.  
  3. library StrDLL;
  4.  
  5. uses UStr;
  6.  
  7. {- Export the routines in unit UStr }
  8.  
  9. exports
  10.   StrNCopy    index 1,
  11.   StrTok      index 2,
  12.   StrFill     index 3;
  13.  
  14. begin
  15. end.
  16.  
  17.  
  18. {--------------------------------------------------------------
  19.   Copyright (c) 1991 by Tom Swan. All rights reserved.
  20.   Revision 1.00    Date: 5/25/1991
  21. ---------------------------------------------------------------}
  22.